home *** CD-ROM | disk | FTP | other *** search
/ Floppyshop 2 / Floppyshop - 2.zip / Floppyshop - 2.iso / art&graf.ix / art-0039 / source / dccnvimg.def next >
Text File  |  1997-04-16  |  941b  |  26 lines

  1. DEFINITION MODULE DCCnvImg;
  2.  
  3. (*---------------------------------------------------------------------*)
  4. (*   Convect Rectangular portion of the picture to '.IMG' format.      *)
  5. (*   Will need a buffer area to convert into.                          *)
  6. (*                                                                     *)
  7. (*                                                                     *)
  8. (*   Version 1.00     November 1988                  L.G.Miller        *)
  9. (*---------------------------------------------------------------------*)
  10.  
  11. FROM SYSTEM    IMPORT ADDRESS;
  12.  
  13. FROM DCGlobal   IMPORT  PictureImage,
  14.                         HiResScreen;
  15.  
  16.  
  17. PROCEDURE ConvertToImage ( VAR PicImageDetails : PictureImage;
  18.                            VAR Picture         : HiResScreen;
  19.                            VAR OutLen          : CARDINAL;
  20.                            VAR OutFilePtr      : ADDRESS );
  21.  
  22. END DCCnvImg.
  23.  
  24.  
  25.  
  26.